home *** CD-ROM | disk | FTP | other *** search
- global gpCursorState, gpSelectionCallback
-
- on doSelection theList, theTitle, theCallback
- set the text of cast "SelectionList" to theList
- set the text of cast "SelectionTitle" to theTitle
- set gpSelectionCallback to theCallback
- go("list")
- end
-
- on handleSelectionCancel
- set gpCursorState to #waitAuto
- cursor(4)
- tell the stage
- closeSelectionMIAW()
- end tell
- updateStage()
- end
-
- on handleSelectionList
- set theIndex to the mouseLine
- if theIndex = -1 then
- exit
- end if
- hilite line theIndex of field "SelectionList"
- set gpCursorState to #waitAuto
- cursor(4)
- tell the stage
- closeSelectionMIAW()
- end tell
- updateStage()
- do(gpSelectionCallback)
- end
-